home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 26 / AACD 26.iso / AACD / Programming / ace_gpl_release / src / lib / asm / turtle_data.s < prev    next >
Encoding:
Text File  |  1998-10-04  |  1.4 KB  |  60 lines

  1. ;
  2. ; Data/BSS references for turtle.s.
  3. ; Copyright (C) 1998 David Benn
  4. ; This program is free software; you can redistribute it and/or
  5. ; modify it under the terms of the GNU General Public License
  6. ; as published by the Free Software Foundation; either version 2
  7. ; of the License, or (at your option) any later version.
  8. ;
  9. ; This program is distributed in the hope that it will be useful,
  10. ; but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12. ; GNU General Public License for more details.
  13. ;
  14. ; You should have received a copy of the GNU General Public License
  15. ; along with this program; if not, write to the Free Software
  16. ; Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  17. ;
  18. ; Author: David J Benn
  19. ;   Date: 19th March 1994
  20. ;
  21.  
  22.     xdef    _tg_initx
  23.     xdef    _tg_inity
  24.     xdef    _tg_xy_ratio
  25.  
  26.     xdef    _tg_degs
  27.     xdef    _tg_tx
  28.     xdef    _tg_ty
  29.     xdef    _tg_pen
  30.     xdef    _tg_distance
  31.     xdef    _tg_theta
  32.     xdef    _tg_temp
  33.     xdef    _tg_x
  34.     xdef    _tg_y
  35.  
  36.     SECTION turtle_data,DATA
  37.  
  38. ; * turtle graphics *
  39. _tg_initx:        dc.w 0
  40. _tg_inity:        dc.w 0
  41. _tg_xy_ratio:        dc.l $f0000141  ; 1.875 (hi-res, non-interlaced)
  42.  
  43. ;************************
  44.  
  45.     SECTION turtle_mem,bss
  46.  
  47. ; * turtle graphics *
  48. _tg_degs:        ds.w 1
  49. _tg_tx:            ds.w 1
  50. _tg_ty:            ds.w 1
  51. _tg_pen:        ds.b 1
  52. _tg_distance:        ds.l 1
  53. _tg_theta:        ds.l 1
  54. _tg_temp:        ds.l 1
  55. _tg_x:            ds.w 1
  56. _tg_y:            ds.w 1
  57.  
  58.     END
  59.